home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / webadmin.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  66 lines

  1. #
  2. # (C) Michel Arboi <arboi@alussinan.org>
  3. #
  4. #
  5. # References:
  6. # http://www.kamborio.com/?Section=Articles&Mode=select&ID=55
  7. #
  8. # From: "Mark Litchfield" <mark@ngssoftware.com>
  9. # To: bugtraq@securityfocus.com, vulnwatch@vulnwatch.org, 
  10. #   vulndb@securityfocus.com
  11. # Date: Tue, 24 Jun 2003 15:22:21 -0700
  12. # Subject: Remote Buffer Overrun WebAdmin.exe
  13. #
  14.  
  15.  
  16. if(description)
  17. {
  18.  script_id(11771);
  19.  script_bugtraq_id(7438, 7439, 8024);
  20.  script_cve_id("CAN-2003-0471");
  21.  script_version ("$Revision: 1.6 $");
  22.  
  23.  name["english"] = "WebAdmin detection";
  24.  
  25.  script_name(english:name["english"]);
  26.  
  27.  desc["english"] = "
  28. webadmin.dll was found on your web server. 
  29. Old versions of this CGI suffered from numerous problems:
  30.  - installation path disclosure
  31.  - directory traversal, allowing anybody with 
  32.    administrative permission on WebAdmin to read any file
  33.  - buffer overflow, allowing anybody to run arbitrary code on
  34.    your server with SYSTEM privileges.
  35.  
  36. *** Note that no attack was performed, and the version number was
  37. *** not checked, so this might be a false alert
  38.  
  39. Solution : Upgrade to the latest version if necessary
  40. Risk factor : High";
  41.  
  42.  script_description(english:desc["english"]);
  43.  
  44.  summary["english"] = "Checks for the presence of webadmin.dll";
  45.  
  46.  script_summary(english:summary["english"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 2003 Michel Arboi");
  52.  family["english"] = "CGI abuses";
  53.  family["francais"] = "Abus de CGI";
  54.  script_family(english:family["english"], francais:family["francais"]);
  55.  script_dependencie("find_service.nes", "no404.nasl");
  56.  script_require_ports("Services/www", 80);
  57.  exit(0);
  58. }
  59.  
  60. #
  61. include("http_func.inc");
  62. include("http_keepalive.inc");
  63. port = get_http_port(default:80);
  64. res = is_cgi_installed_ka(port:port, item:"webadmin.dll");
  65. if (res) security_warning(port);
  66.